99b13f1da6998678d2af2e928e04ebad8e121fa3,core/src/main/java/org/apache/cxf/configuration/jsse/SSLUtils.java,SSLUtils,getCiphersuites,#List#String[]#FiltersType#Logger#boolean#,432
Before Change
"CIPHERSUITES_EXCLUDED",
excludedCipherSuites);
if (exclude) {
cipherSuites = getCiphersFromList(excludedCipherSuites, log, exclude);
} else {
cipherSuites = getCiphersFromList(filteredCipherSuites, log, exclude);
}
After Change
"CIPHERSUITES_EXCLUDED",
excludedCipherSuites);
if (exclude) {
return getCiphersFromList(excludedCipherSuites, log, exclude);
} else {
return getCiphersFromList(filteredCipherSuites, log, exclude);
}